home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / • Other Platforms / PCCTS 1.31 / support / genmk / makefile < prev   
Encoding:
Makefile  |  1995-03-10  |  403 b   |  24 lines  |  [TEXT/MPS ]

  1. SRC=genmk.c
  2. OBJ=genmk.o
  3. # Define PC if you use a PC OS (changes directory symbol and object file extension)
  4. # see pccts/h/config.h
  5. #CFLAGS=-I../../h -DPC
  6. CFLAGS=-I../../h
  7. CC=cc
  8. BAG=../../bin/bag
  9.  
  10. genmk: $(OBJ) $(SRC) ../../h/config.h
  11.     $(CC) -o genmk $(OBJ)
  12.  
  13. clean:
  14.     rm -rf core *.o
  15.  
  16. scrub:
  17.     rm -rf genmk core *.o
  18.  
  19. shar:
  20.     shar genmk.c makefile > genmk.shar
  21.  
  22. archive:
  23.     $(BAG) genmk.c makefile > genmk.bag
  24.